-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcodely-full.js
62 lines (60 loc) · 1.48 KB
/
codely-full.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import eslintPluginCheckFile from "eslint-plugin-check-file";
import eslintPluginCodely from "./codely-ts.js";
export default [
...eslintPluginCodely,
{
ignores: [
"**/.idea/",
"**/.next/",
"**/.storybook/",
"**/.turbo/",
"**/.yarn/",
"**/node_modules/",
"**/storybook-static/",
"**/test-results/",
],
},
{
plugins: {
"check-file": eslintPluginCheckFile,
},
rules: {
"prettier/prettier": ["error", { printWidth: 120, useTabs: true, tabWidth: 4 }],
"check-file/folder-naming-convention": [
"error",
{
// hyphens (kebab-case folders), square brackets (Next.js dynamic routes), parentheses (Next.js route groups), numbers (i.e. i18n) and 3 consecutive dots i.e ([...rest]) are allowed
"**/*": "+([a-z-0-9-\\[\\]\\(\\)\\.\\.\\.])"
},
],
"simple-import-sort/imports": [
"error",
{
groups: [
// Side effect imports: `import "./setup";`
["^\\u0000"],
// Packages: `import fs from "fs";`
["^@?\\w"],
// Internal packages.
["^(@|@codely)(/.*|$)"],
// Parent imports. Put `..` last.
["^\\.\\.(?!/?$)", "^\\.\\./?$"],
// Other relative imports. Put same-folder imports and `.` last.
["^\\./(?=.*/)(?!/?$)", "^\\.(?!/?$)", "^\\./?$"],
// Style imports.
["^.+\\.s?css$"],
],
},
],
"no-use-before-define": [
"error",
{
functions: false,
classes: true,
variables: true,
allowNamedExports: false,
},
],
},
},
];