Skip to content

Commit 05144e9

Browse files
committed
Disable import/no-absolute-path eslint rule, for now
Add note of explanation. Release version 2.0.7.
1 parent c8c0187 commit 05144e9

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

index.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,16 +115,18 @@ module.exports = {
115115

116116
'jsx-quotes': 'off',
117117

118+
// These rules went much more strict after updating on 2020-01-23, and are decreased in urgency due to the impact there would be on the existing codebase
118119
'array-bracket-spacing': 'warn',
120+
'import/no-absolute-path': 'warn',
119121
'lines-between-class-members': 'warn',
122+
'no-case-declarations': 'off',
120123
'no-else-return': 'off',
121124
'no-extra-semi': 'error',
122-
'no-shadow': 'warn',
123125
'no-invalid-this': 'off',
124-
'no-warning-comments': ['warn', { 'terms': ['FIXME', 'TODO', 'TO-DO', 'HACK', 'HERE BE DRAGONS'], 'location': 'anywhere' }],
125-
'no-undefined': 'warn',
126-
'no-case-declarations': 'off',
127126
'no-prototype-builtins': 'warn',
127+
'no-shadow': 'warn',
128+
'no-undefined': 'warn',
129+
'no-warning-comments': ['warn', { 'terms': ['FIXME', 'TODO', 'TO-DO', 'HACK', 'HERE BE DRAGONS'], 'location': 'anywhere' }],
128130
'object-curly-newline': 'warn',
129131
'object-curly-spacing': 'off',
130132
'prefer-const': 'warn',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-config-tree",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "Shared Tree configuration that contains overrides and enhancements on top of the base frontier configuration.",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)