14 lines
227 B
JavaScript
14 lines
227 B
JavaScript
|
/** @type {import('eslint').Linter.Config[]} */
|
||
|
export default [
|
||
|
{
|
||
|
ignores: [
|
||
|
'**/dist',
|
||
|
'**/node_modules',
|
||
|
'**/protos',
|
||
|
'**/proto',
|
||
|
'**/coverage',
|
||
|
'**/storybook-static',
|
||
|
],
|
||
|
},
|
||
|
]
|