Merge pull request #3189 from bluesky-social/samuel/sort-imports
Sort imports using eslint-plugin-simple-import-sortzio/stable
commit
81bc3ed4c3
48
.eslintrc.js
48
.eslintrc.js
|
@ -7,10 +7,52 @@ module.exports = {
|
||||||
'prettier',
|
'prettier',
|
||||||
],
|
],
|
||||||
parser: '@typescript-eslint/parser',
|
parser: '@typescript-eslint/parser',
|
||||||
plugins: ['@typescript-eslint', 'detox', 'react', 'lingui'],
|
plugins: [
|
||||||
|
'@typescript-eslint',
|
||||||
|
'detox',
|
||||||
|
'react',
|
||||||
|
'lingui',
|
||||||
|
'simple-import-sort',
|
||||||
|
],
|
||||||
rules: {
|
rules: {
|
||||||
'react/no-unescaped-entities': 0,
|
'react/no-unescaped-entities': 0,
|
||||||
'react-native/no-inline-styles': 0,
|
'react-native/no-inline-styles': 0,
|
||||||
|
'simple-import-sort/imports': [
|
||||||
|
'warn',
|
||||||
|
{
|
||||||
|
groups: [
|
||||||
|
// Side effect imports.
|
||||||
|
['^\\u0000'],
|
||||||
|
// Node.js builtins prefixed with `node:`.
|
||||||
|
['^node:'],
|
||||||
|
// Packages.
|
||||||
|
// Things that start with a letter (or digit or underscore), or `@` followed by a letter.
|
||||||
|
// React/React Native priortized, followed by expo
|
||||||
|
// Followed by all packages excluding unprefixed relative ones
|
||||||
|
[
|
||||||
|
'^(react\\/(.*)$)|^(react$)|^(react-native(.*)$)',
|
||||||
|
'^(expo(.*)$)|^(expo$)',
|
||||||
|
'^(?!(?:alf|components|lib|locale|logger|platform|screens|state|view)(?:$|\\/))@?\\w',
|
||||||
|
],
|
||||||
|
// Relative imports.
|
||||||
|
// Ideally, anything that starts with a dot or #
|
||||||
|
// due to unprefixed relative imports being used, we whitelist the relative paths we use
|
||||||
|
// (?:$|\\/) matches end of string or /
|
||||||
|
[
|
||||||
|
'^(?:#\\/)?(?:lib|state|logger|platform|locale)(?:$|\\/)',
|
||||||
|
'^(?:#\\/)?view(?:$|\\/)',
|
||||||
|
'^(?:#\\/)?screens(?:$|\\/)',
|
||||||
|
'^(?:#\\/)?alf(?:$|\\/)',
|
||||||
|
'^(?:#\\/)?components(?:$|\\/)',
|
||||||
|
'^#\\/',
|
||||||
|
'^\\.',
|
||||||
|
],
|
||||||
|
// anything else - hopefully we don't have any of these
|
||||||
|
['^'],
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'simple-import-sort/exports': 'warn',
|
||||||
},
|
},
|
||||||
ignorePatterns: [
|
ignorePatterns: [
|
||||||
'**/__mocks__/*.ts',
|
'**/__mocks__/*.ts',
|
||||||
|
@ -31,4 +73,8 @@ module.exports = {
|
||||||
settings: {
|
settings: {
|
||||||
componentWrapperFunctions: ['observer'],
|
componentWrapperFunctions: ['observer'],
|
||||||
},
|
},
|
||||||
|
parserOptions: {
|
||||||
|
sourceType: 'module',
|
||||||
|
ecmaVersion: 'latest',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -237,6 +237,7 @@
|
||||||
"eslint-plugin-lingui": "^0.2.0",
|
"eslint-plugin-lingui": "^0.2.0",
|
||||||
"eslint-plugin-react": "^7.33.2",
|
"eslint-plugin-react": "^7.33.2",
|
||||||
"eslint-plugin-react-native-a11y": "^3.3.0",
|
"eslint-plugin-react-native-a11y": "^3.3.0",
|
||||||
|
"eslint-plugin-simple-import-sort": "^12.0.0",
|
||||||
"html-webpack-plugin": "^5.5.0",
|
"html-webpack-plugin": "^5.5.0",
|
||||||
"husky": "^8.0.3",
|
"husky": "^8.0.3",
|
||||||
"is-ci": "^3.0.1",
|
"is-ci": "^3.0.1",
|
||||||
|
|
|
@ -11533,6 +11533,11 @@ eslint-plugin-react@^7.27.1, eslint-plugin-react@^7.30.1, eslint-plugin-react@^7
|
||||||
semver "^6.3.1"
|
semver "^6.3.1"
|
||||||
string.prototype.matchall "^4.0.8"
|
string.prototype.matchall "^4.0.8"
|
||||||
|
|
||||||
|
eslint-plugin-simple-import-sort@^12.0.0:
|
||||||
|
version "12.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-12.0.0.tgz#3cfa05d74509bd4dc329a956938823812194dbb6"
|
||||||
|
integrity sha512-8o0dVEdAkYap0Cn5kNeklaKcT1nUsa3LITWEuFk3nJifOoD+5JQGoyDUW2W/iPWwBsNBJpyJS9y4je/BgxLcyQ==
|
||||||
|
|
||||||
eslint-plugin-testing-library@^5.0.1:
|
eslint-plugin-testing-library@^5.0.1:
|
||||||
version "5.11.1"
|
version "5.11.1"
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz#5b46cdae96d4a78918711c0b4792f90088e62d20"
|
resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz#5b46cdae96d4a78918711c0b4792f90088e62d20"
|
||||||
|
|
Loading…
Reference in New Issue