Skip to content

Commit

Permalink
Revert to .eslintrc.js
Browse files Browse the repository at this point in the history
Converting to eslint.config.js is desired but is more than just renaming
the file
  • Loading branch information
anoek committed Jul 17, 2024
1 parent afb34ec commit 535c9ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
8 changes: 1 addition & 7 deletions eslint.config.js → .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
module.exports = {
ignorePatterns: [
'node_modules',
'dist',
'i18n',
'typings_manual',
'.github',
],
ignorePatterns: ["node_modules", "dist", "i18n", "typings_manual", ".github"],
env: {
browser: true,
es6: true,
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"prettier:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"webpack": "webpack",
"webpack-watch": "webpack --watch --progress --color",
"lint": "eslint src/ --ext=.ts,.tsx -c eslint.config.js",
"lint:fix": "eslint --fix src/ --ext=.ts,.tsx -c eslint.config.js",
"lint": "eslint src/ --ext=.ts,.tsx -c .eslintrc.js",
"lint:fix": "eslint --fix src/ --ext=.ts,.tsx -c .eslintrc.js",
"test": "jest",
"fresh-test": "clear && jest",
"gulp": "gulp",
Expand Down

0 comments on commit 535c9ac

Please sign in to comment.