mirror of
https://github.com/maciejpedzich/spotifyplaylistarchive.com.git
synced 2024-11-09 23:13:01 +01:00
25 lines
498 B
JavaScript
25 lines
498 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/essential',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'@nuxtjs/eslint-config-typescript',
|
|
'plugin:prettier/recommended'
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
parser: '@typescript-eslint/parser',
|
|
sourceType: 'module'
|
|
},
|
|
plugins: ['vue', '@typescript-eslint'],
|
|
rules: {
|
|
camelcase: 0,
|
|
'prettier/prettier': 2
|
|
}
|
|
};
|