mirror of
https://github.com/ivuorinen/base-configs.git
synced 2026-01-26 03:03:59 +00:00
15 lines
261 B
JavaScript
15 lines
261 B
JavaScript
'use strict'
|
|
|
|
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es2021: true,
|
|
node: true
|
|
},
|
|
extends: ['plugin:promise/recommended', 'plugin:sonarjs/recommended', 'standard', 'prettier'],
|
|
parserOptions: {
|
|
ecmaVersion: 12
|
|
}
|
|
}
|