mirror of
https://github.com/anatolykopyl/movieroom-core.git
synced 2026-03-26 12:54:51 +00:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'airbnb-typescript/base',
|
|
'plugin:import/recommended'
|
|
],
|
|
parserOptions: {
|
|
project: './tsconfig.json',
|
|
},
|
|
rules: {
|
|
'import/prefer-default-export': 'off',
|
|
},
|
|
ignorePatterns: ['.eslintrc.js']
|
|
}; |