Skip to content

Commit

Permalink
chore: clarify why certain ESLint rules are globally disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptammergard committed Dec 21, 2021
1 parent 0358f7b commit aaed539
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/eslint/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
extends: ["plugin:@einride/default"],
rules: {
"jest/no-deprecated-functions": 0,
"prettier/prettier": 0,
"jest/no-deprecated-functions": "off", // we're not using Jest
"prettier/prettier": "off", // we're not concerned with code style
},
};

0 comments on commit aaed539

Please sign in to comment.