You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 19, 2024. It is now read-only.
'prettier/@typescript-eslint', // Disable ESLint rules that would conflict with prettier
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
],
parserOptions: {
ecmaVersion: 2019, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports
},
rules: {
'@typescript-eslint/camelcase': 'off', // I prefer snake_case variable names
'no-console': 'off', // It's a CLI, we need to log to the console
'@typescript-eslint/no-use-before-define': 'off', // It's nice to define helpers at the bottom of a file.
'import/extensions': 'off', //ESlint does not like importing Typescript files without an extension