-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintignore
54 lines (42 loc) · 919 Bytes
/
.eslintignore
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
# #############################################################################
# .eslintignore config.
# #############################################################################
#
# @description Specifies which files and directories should be ignored by ESLint,
# helping to exclude specific files from linting.
# @see https://eslint.org/docs/user-guide/configuring/ignoring-code
#
# #############################################################################
# builds or dev folders
node_modules/*
**/node_modules/*
vendor/*
**/vendor/*
static/*
**/static/*
public/*
**/public/*
build/*
**/build/*
dist
**/dist/*
.svelte-kit/*
**/.svelte-kit/*
# ENV
.env
.env.*
!.env.example
# TYPESCRIPT
**/*.d.ts
# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
pnpm-workspace.yaml
package-lock.json
yarn.lock
# OTHERS
**/*.timestamp-*
**/__temp__
/__cache__
**/__cache__
.DS_Store
**/.DS_Store