makemehapi
Version:
Self guided workshops to teach you about hapi.
23 lines (22 loc) • 328 B
JavaScript
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true
},
extends: [
'standard',
'plugin:json/recommended'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018
},
rules: {
indent: ['error', 2],
semi: 0
}
}