source: trip-planner-front/node_modules/regexp.prototype.flags/.eslintrc@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 374 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "eqeqeq": [2, "allow-null"],
8 "max-statements": 0,
9 "no-extend-native": [2, { "exceptions": ["RegExp"] }],
10 "no-invalid-regexp": [2, { "allowConstructorFlags": ["s", "u", "y"] }],
11 "no-invalid-this": 0
12 },
13
14 "overrides": [
15 {
16 "files": "test/**",
17 "rules": {
18 "max-lines-per-function": 0,
19 },
20 },
21 ],
22}
Note: See TracBrowser for help on using the repository browser.