|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parser: '@babel/eslint-parser',
|
|
|
|
parserOptions: {
|
|
|
|
sourceType: 'module',
|
|
|
|
ecmaVersion: 2017,
|
|
|
|
ecmaFeatures: {
|
|
|
|
experimentalObjectRestSpread: true,
|
|
|
|
impliedStrict: true,
|
|
|
|
modules: true,
|
|
|
|
blockBindings: true,
|
|
|
|
arrowFunctions: true,
|
|
|
|
objectLiteralShorthandMethods: true,
|
|
|
|
objectLiteralShorthandProperties: true,
|
|
|
|
templateStrings: true,
|
|
|
|
classes: true,
|
|
|
|
jsx: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
ignorePatterns: [
|
|
|
|
'!.eslintrc.js',
|
|
|
|
'node_modules/**',
|
|
|
|
'dist/**',
|
|
|
|
'builds/**',
|
|
|
|
'test-*/**',
|
|
|
|
'docs/**',
|
|
|
|
'coverage/',
|
|
|
|
'jest-coverage/',
|
|
|
|
'development/chromereload.js',
|
|
|
|
'app/vendor/**',
|
|
|
|
'test/e2e/send-eth-with-private-key-test/**',
|
|
|
|
'nyc_output/**',
|
|
|
|
'.vscode/**',
|
|
|
|
'lavamoat/*/policy.json',
|
|
|
|
],
|
|
|
|
|
|
|
|
extends: [
|
|
|
|
'@metamask/eslint-config',
|
|
|
|
'@metamask/eslint-config-nodejs',
|
|
|
|
'prettier',
|
|
|
|
],
|
|
|
|
|
|
|
|
plugins: ['@babel', 'import', 'prettier'],
|
|
|
|
|
|
|
|
globals: {
|
|
|
|
document: 'readonly',
|
|
|
|
window: 'readonly',
|
|
|
|
},
|
|
|
|
|
|
|
|
rules: {
|
|
|
|
'default-param-last': 'off',
|
|
|
|
'prefer-object-spread': 'error',
|
|
|
|
'require-atomic-updates': 'off',
|
|
|
|
|
|
|
|
'import/no-unassigned-import': 'off',
|
|
|
|
|
|
|
|
'no-invalid-this': 'off',
|
|
|
|
'@babel/no-invalid-this': 'error',
|
|
|
|
|
|
|
|
// Prettier handles this
|
|
|
|
'@babel/semi': 'off',
|
|
|
|
|
|
|
|
'node/no-process-env': 'off',
|
|
|
|
|
|
|
|
// TODO: re-enable these rules
|
|
|
|
'node/no-sync': 'off',
|
|
|
|
'node/no-unpublished-import': 'off',
|
|
|
|
'node/no-unpublished-require': 'off',
|
|
|
|
},
|
|
|
|
overrides: [
|
|
|
|
{
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
4 years ago
|
|
|
files: ['ui/**/*.js', 'test/lib/render-helpers.js', 'test/jest/*.js'],
|
|
|
|
plugins: ['react'],
|
|
|
|
extends: ['plugin:react/recommended', 'plugin:react-hooks/recommended'],
|
|
|
|
rules: {
|
|
|
|
'react/no-unused-prop-types': 'error',
|
|
|
|
'react/no-unused-state': 'error',
|
|
|
|
'react/jsx-boolean-value': 'error',
|
|
|
|
'react/jsx-curly-brace-presence': [
|
|
|
|
'error',
|
|
|
|
{ props: 'never', children: 'never' },
|
|
|
|
],
|
|
|
|
'react/no-deprecated': 'error',
|
|
|
|
'react/default-props-match-prop-types': 'error',
|
|
|
|
'react/jsx-no-duplicate-props': 'error',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: ['test/e2e/**/*.spec.js'],
|
|
|
|
extends: ['@metamask/eslint-config-mocha'],
|
|
|
|
rules: {
|
|
|
|
'mocha/no-hooks-for-single-case': 'off',
|
|
|
|
'mocha/no-setup-in-describe': 'off',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: ['app/scripts/migrations/*.js', '*.stories.js'],
|
|
|
|
rules: {
|
|
|
|
'import/no-anonymous-default-export': ['error', { allowObject: true }],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: ['app/scripts/migrations/*.js'],
|
|
|
|
rules: {
|
|
|
|
'node/global-require': 'off',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: ['**/*.test.js'],
|
|
|
|
excludedFiles: ['ui/**/*.test.js', 'ui/__mocks__/*.js'],
|
|
|
|
extends: ['@metamask/eslint-config-mocha'],
|
|
|
|
rules: {
|
|
|
|
'mocha/no-setup-in-describe': 'off',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
4 years ago
|
|
|
files: ['**/__snapshots__/*.snap'],
|
|
|
|
plugins: ['jest'],
|
|
|
|
rules: {
|
|
|
|
'jest/no-large-snapshots': [
|
|
|
|
'error',
|
|
|
|
{ maxSize: 50, inlineMaxSize: 50 },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: ['ui/**/*.test.js', 'ui/__mocks__/*.js'],
|
|
|
|
extends: ['@metamask/eslint-config-jest'],
|
|
|
|
rules: {
|
|
|
|
'jest/no-restricted-matchers': 'off',
|
Increase Jest unit test coverage for the Swaps feature to ~25% (#10900)
* Swaps: Show a network name dynamically in a tooltip
* Replace “Ethereum” with “$1”, change “Test” to “Testnet”
* Replace 이더리움 with $1
* Translate network names, use ‘Ethereum’ by default if a translation is not available yet
* Reorder messages to resolve ESLint issues
* Add a snapshot test for the FeeCard component, increase Jest threshold
* Enable snapshot testing into external .snap files in ESLint
* Add the “networkNameEthereum” key in ko/messages.json, remove default “Ethereum” value
* Throw an error if chain ID is not supported by the Swaps feature
* Use string literals when calling the `t` fn,
* Watch Jest tests silently (no React warnings in terminal, only errors)
* Add @testing-library/jest-dom, import it before running Jest tests
* Add snapshot testing of Swaps’ React components for happy paths, increase minimum threshold for Jest
* Add the test/jest folder for Jest setup and shared functions, use it in Swaps Jest tests
* Fix ESLint issues, update linting config
* Enable ESLint for .snap files (Jest snapshots), throw an error if a snapshot is bigger than 50 lines
* Don’t run lint:fix for .snap files
* Move `createProps` outside of `describe` blocks, move store creation inside tests
* Use translations instead of keys, update a rendering function to load translations
* Make sure all Jest snapshots are shorter than 50 lines (default limit)
* Add / update props for Swaps tests
* Fix React warnings when running tests for Swaps
4 years ago
|
|
|
'import/unambiguous': 'off',
|
|
|
|
'import/named': 'off',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: [
|
|
|
|
'development/**/*.js',
|
|
|
|
'test/e2e/benchmark.js',
|
|
|
|
'test/helpers/setup-helper.js',
|
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'node/no-process-exit': 'off',
|
|
|
|
'node/shebang': 'off',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
files: [
|
|
|
|
'.eslintrc.js',
|
|
|
|
'babel.config.js',
|
|
|
|
'nyc.config.js',
|
|
|
|
'stylelint.config.js',
|
|
|
|
'app/scripts/runLockdown.js',
|
|
|
|
'development/**/*.js',
|
|
|
|
'test/e2e/**/*.js',
|
|
|
|
'test/lib/wait-until-called.js',
|
|
|
|
'test/env.js',
|
|
|
|
'test/setup.js',
|
|
|
|
'jest.config.js',
|
|
|
|
],
|
|
|
|
parserOptions: {
|
|
|
|
sourceType: 'script',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
|
|
|
|
settings: {
|
|
|
|
react: {
|
|
|
|
version: 'detect',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|