Skip to content

Commit

Permalink
fix lint glob
Browse files Browse the repository at this point in the history
  • Loading branch information
fschade committed Jun 16, 2021
1 parent f704def commit 6de0af1
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 182 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build": "rollup -c",
"build:w": "rollup -c -w",
"depcheck": "depcheck",
"lint": "eslint packages/**/*/src packages/**/*/tests --color",
"lint": "eslint '{packages,tests}/**/*.{js,ts,vue}' --color",
"serve": "SERVER=true yarn build:w",
"test:acceptance:drone": "cucumber-js --retry 1 --require-module @babel/register --require-module @babel/polyfill --require tests/acceptance/setup.js --require tests/acceptance/stepDefinitions --format node_modules/cucumber-pretty",
"test:acceptance:oc10": "cucumber-js --require-module @babel/register --require-module @babel/polyfill --require tests/acceptance/setup.js --require tests/acceptance/stepDefinitions --format node_modules/cucumber-pretty -t \"${TEST_TAGS:-not @skip and not @skipOnOC10}\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/web-runtime/tests/store/config.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { createStore } from 'vuex-extensions'

import { loadTheme } from 'web-runtime/src/helpers/theme'
import Store from 'web-runtime/src/store'
import { keysDeep } from 'web-pkg/src/utils/object'
import { objectKeys } from 'web-pkg/src/utils'
import get from 'lodash-es/get'
import difference from 'lodash-es/difference'

Expand Down
Loading

0 comments on commit 6de0af1

Please sign in to comment.