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