mirror of
https://github.com/facebook/react-native.git
synced 2024-11-22 06:29:46 +00:00
bfc6392e1a
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/32698 Changelog: [Internal] - Renaming the eslint-plugin-codegen to eslint-plugin-specs as a better descriptor for this package. Part of the plan is to publish as a public npm package Reviewed By: RSNara Differential Revision: D32777702 fbshipit-source-id: 7776c481871031dba1280d87fb76b777ecc23339
61 lines
1.2 KiB
Plaintext
61 lines
1.2 KiB
Plaintext
{
|
|
"root": true,
|
|
|
|
"extends": [
|
|
"./packages/eslint-config-react-native-community/index.js"
|
|
],
|
|
|
|
"plugins": [
|
|
"@react-native/eslint-plugin-specs"
|
|
],
|
|
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"Libraries/**/*.js",
|
|
],
|
|
"rules": {
|
|
"@react-native-community/no-haste-imports": 2,
|
|
"@react-native-community/error-subclass-name": 2,
|
|
"@react-native-community/platform-colors": 2,
|
|
"@react-native/specs/react-native-modules": 2
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"flow-typed/**/*.js",
|
|
],
|
|
"rules": {
|
|
quotes: 0
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"**/__fixtures__/**/*.js",
|
|
"**/__mocks__/**/*.js",
|
|
"**/__tests__/**/*.js",
|
|
"jest/**/*.js",
|
|
"packages/rn-tester/**/*.js",
|
|
],
|
|
"globals": {
|
|
// Expose some Jest globals for test helpers
|
|
"afterAll": true,
|
|
"afterEach": true,
|
|
"beforeAll": true,
|
|
"beforeEach": true,
|
|
"expect": true,
|
|
"jest": true,
|
|
},
|
|
},
|
|
{
|
|
"files": [
|
|
"**/__tests__/**/*-test.js",
|
|
],
|
|
"env": {
|
|
"jasmine": true,
|
|
"jest": true
|
|
}
|
|
}
|
|
]
|
|
}
|