@puls-atlas/cli
Version:
The Puls Atlas CLI tool for managing Atlas projects
34 lines (32 loc) • 666 B
JavaScript
import config from '@limebooth/atlas-eslint-config';
/**
* Override the default configuration here.\
* `config` is an array of configurations that can be merged with other configurations.
* ___
* @see https://eslint.org/docs/latest/use/configure/configuration-files
* ___
*
* For example, to override a rule:
*
* ```js
*
* export default [
* ...config,
* {
* rules: {
* 'no-console': 'off',
* }
* ];
*
* ```
*/
export default [
...config,
{
rules: {
'import/extensions': 'off',
'no-param-reassign': 'off',
'no-useless-escape': 'off'
}
}
];