Skip to content

Commit

Permalink
Merge branch 'NCUAppTeam:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
1989ONCE authored May 11, 2023
2 parents f75eeb2 + 9662e18 commit 16a8236
Show file tree
Hide file tree
Showing 3 changed files with 234 additions and 402 deletions.
31 changes: 12 additions & 19 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,35 +1,28 @@
module.exports = {
env: {
es2021: true,
node: true,
node: true
},
extends: [
'plugin:react/recommended',
'airbnb',
'standard'
],
parserOptions: {
ecmaFeatures: {
jsx: true,
jsx: true
},
ecmaVersion: 'latest',
sourceType: 'module',
sourceType: 'module'
},
plugins: [
'react',
'react-native',
'unused-imports',
'react'
],
rules: {
'react/jsx-props-no-spreading': 'off',
'react/prop-types': 'off',
'react-native/no-unused-styles': 2,
'no-unused-vars': 'off',
'unused-imports/no-unused-imports': 'error',
'unused-imports/no-unused-vars': [
'warn',
{
vars: 'all', varsIgnorePattern: '^_', args: 'after-used', argsIgnorePattern: '^_',
},
],
'react/prop-types': 'off'
},
};
settings: {
react: {
version: 'detect'
}
}
}
Loading

0 comments on commit 16a8236

Please sign in to comment.