Skip to content

Commit aaed539

Browse files
chore: clarify why certain ESLint rules are globally disabled
1 parent 0358f7b commit aaed539

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/eslint/.eslintrc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
extends: ["plugin:@einride/default"],
33
rules: {
4-
"jest/no-deprecated-functions": 0,
5-
"prettier/prettier": 0,
4+
"jest/no-deprecated-functions": "off", // we're not using Jest
5+
"prettier/prettier": "off", // we're not concerned with code style
66
},
77
};

0 commit comments

Comments
 (0)