-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
.eslintrc.js
42 lines (40 loc) · 990 Bytes
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*!
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/*
* DO NOT EDIT THIS FILE!
*
* It's auto-generated by sonata-project/dev-kit package.
*/
module.exports = {
parser: '@babel/eslint-parser',
extends: ['airbnb-base', 'prettier'],
env: {
browser: true,
jquery: true,
},
plugins: ['header'],
rules: {
'header/header': [
2,
'block',
[
'!',
' * This file is part of the Sonata Project package.',
' *',
' * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>',
' *',
' * For the full copyright and license information, please view the LICENSE',
' * file that was distributed with this source code.',
' ',
],
2,
],
'import/no-webpack-loader-syntax': 'off',
},
};