Skip to content

Commit 25b5f5d

Browse files
authored
fix: Remove unnecessary import/no-duplicates rule (#11)
* import/no-duplicates is already in eslint-config-airbnb * Add yarn.lock * Use yarn on CI
1 parent 74188ac commit 25b5f5d

File tree

3 files changed

+1782
-5
lines changed

3 files changed

+1782
-5
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
language: node_js
22
cache:
3+
yarn: true
34
directories:
45
- node_modules
56
notifications:
67
email: false
78
node_js:
89
- '8'
9-
- '6'
1010
- '4'
11-
before_script:
12-
- npm prune
1311
after_success:
14-
- npm run semantic-release
12+
- yarn semantic-release
1513
branches:
1614
except:
1715
- /^v\d+\.\d+\.\d+$/

index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ module.exports = {
1919
'flowtype/require-return-type': [0, 'always', {annotateUndefined: 'never'}],
2020
'flowtype/require-valid-file-annotation': 2,
2121
'import/extensions': 0,
22-
'import/no-duplicates': 2,
2322
'import/no-dynamic-require': 0,
2423
'import/no-unresolved': 2,
2524
'new-cap': 0,

0 commit comments

Comments
 (0)