Skip to content

Commit

Permalink
Improve linting
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jul 26, 2022
1 parent ea191da commit 3be1609
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .eslintrc.js
Expand Up @@ -13,12 +13,13 @@ module.exports = {
'plugin:import/typescript'
],
ignorePatterns: [
'node_modules/**/*.*',
'dist/**/*.*',
'/test/**/*.*',
'node_modules',
'dist',
'/test',
'perf',
'!/test/*.js',
'!/test/*/*.js',
'/test/node_modules/*.*',
'/test/node_modules',
'!/test/*/samples/**/_config.js',
'!/test/*/samples/**/rollup.config.js'
],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -17,7 +17,7 @@
"ci:test:only": "npm run build:cjs && npm run build:bootstrap && npm run test:only",
"ci:coverage": "npm run build:cjs && npm run build:bootstrap && nyc --reporter lcovonly mocha",
"lint": "eslint . --fix --cache && prettier --write \"**/*.md\"",
"lint:nofix": "eslint . && prettier --check \"**/*.md\"",
"lint:nofix": "eslint . --cache && prettier --check \"**/*.md\"",
"lint:markdown": "prettier --write \"**/*.md\"",
"perf": "npm run build:cjs && node --expose-gc scripts/perf.js",
"perf:debug": "node --inspect-brk scripts/perf-debug.js",
Expand Down

0 comments on commit 3be1609

Please sign in to comment.