Skip to content

Commit e31cddd

Browse files
authored
Merge pull request #598 from Galooshi/594-move-to-prettier-abandon-eslint
594 move to prettier abandon eslint
2 parents 4ae3802 + 2906d6b commit e31cddd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2965
-2737
lines changed

.babelrc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
{
2-
"presets": [
3-
"@babel/preset-react",
4-
"@babel/preset-env",
5-
"@babel/preset-flow"
6-
],
2+
"presets": ["@babel/preset-react", "@babel/preset-env", "@babel/preset-flow"],
73
"plugins": [
84
"@babel/plugin-transform-flow-strip-types",
95
"@babel/plugin-proposal-class-properties",

.codeclimate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ engines:
22
eslint:
33
enabled: false
44
exclude_patterns:
5-
- "lib/__tests__/"
6-
- "lib/__mocks__/"
5+
- 'lib/__tests__/'
6+
- 'lib/__mocks__/'

.eslintrc.js

Lines changed: 0 additions & 44 deletions
This file was deleted.

.importjs.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ module.exports = {
1010
ignorePackagePrefixes: ['lodash.'],
1111
declarationKeyword: 'import',
1212
logLevel: 'debug',
13-
excludes: [
14-
'./build/**',
15-
'./lib/__mocks__/**'
16-
],
13+
excludes: ['./build/**', './lib/__mocks__/**'],
1714
importDevDependencies: ({ pathToCurrentFile }) =>
1815
testFilePattern.test(pathToCurrentFile),
19-
}
16+
};

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build
2+
coverage

0 commit comments

Comments
 (0)