1.0.24 • Published 3 years ago

@cylution/eslint-config-react-native v1.0.24

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

@cylution/eslint-config-react-native

yarn add -D eslint @cylution/eslint-config-react-native

Usage

Edit .eslintrc or .eslintrc.js

module.exports = {
  extends: ['@cylution/react-native'],
  rules: {
    'react/jsx-closing-bracket-location': [1, {
      nonEmpty: 'tag-aligned',
      selfClosing: 'line-aligned',
    }]
  },
}

Extra step for typescript

npm i -D @typescript-eslint/parser typescript

yarn add -D @typescript-eslint/parser typescript

Modify .eslintrc.js

// .eslintrc.js
module.exports = {
  extends: ['@cylution/react-native'],
  overrides: [
    // typescript
    {
      files: ['*.ts', '*.tsx'],
      parser: '@typescript-eslint/parser',
      rules: {
        'react/jsx-closing-bracket-location': [1, {
          nonEmpty: 'tag-aligned',
          selfClosing: 'line-aligned',
        }]
      },
    },
  ],
}

Note

If you get error message like: Could not load/find module eslint-blahblah, please remove node_modules and run npm install or yarn to reinstall packages

1.0.24

3 years ago

1.0.23

3 years ago

1.0.22

4 years ago

1.0.21

4 years ago

1.0.20

4 years ago

1.0.19

4 years ago

1.0.19-alpha.1

4 years ago

1.0.19-alpha.0

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago