Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
842 B
51 lines
842 B
1 year ago
|
'use strict';
|
||
|
|
||
|
module.exports = {
|
||
|
root: true,
|
||
|
extends: ['eslint:recommended', 'prettier'],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018,
|
||
|
},
|
||
|
env: {
|
||
|
es6: true,
|
||
|
},
|
||
|
globals: {
|
||
|
exports: true,
|
||
|
module: true,
|
||
|
require: true,
|
||
|
window: true,
|
||
|
},
|
||
|
plugins: ['prettier'],
|
||
|
rules: {
|
||
|
'prettier/prettier': [
|
||
|
'warn',
|
||
|
{
|
||
|
printWidth: 100,
|
||
|
singleQuote: true,
|
||
|
trailingComma: 'es5',
|
||
|
},
|
||
|
],
|
||
|
strict: ['warn', 'global'],
|
||
|
},
|
||
|
overrides: [
|
||
|
{
|
||
|
files: ['lib/implementedProperties.js', 'lib/properties.js'],
|
||
|
rules: {
|
||
|
'prettier/prettier': 'off',
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
files: 'scripts/**/*',
|
||
|
rules: {
|
||
|
'no-console': 'off',
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
files: ['scripts/**/*', 'tests/**/*'],
|
||
|
env: {
|
||
|
node: true,
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|