-
Notifications
You must be signed in to change notification settings - Fork 59
/
.eslintignore
33 lines (25 loc) · 1012 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
# http://eslint.org/docs/user-guide/configuring.html#ignoring-files-and-directories
# node_modules folders
# --------------------
# https://github.com/eslint/eslint/blob/v8.38.0/lib/config/default-config.js#L51
# `!**/node_modules/*` is ignored by default
# Since we are creating handwritten code in some non-npm based node_modules folders (to utilize the module resolution
# algorithm for custom code), we are disabling that ESLint ignore rule to add paths to those folders immediately after
# this. If we don't do this, then we may have to do a weird workaround to enable ESLint for those custom code
# in node_modules paths, like: https://github.com/eslint/eslint/issues/5728#issuecomment-246430604
!**/node_modules/*
/node_modules/
/live-css/node_modules/
/tests/node_modules/
/scripts/node_modules/
# 3rd party code
# --------------
extension/scripts/3rdparty/
# Generated files
# ---------------
extension-dist/
extension-chrome/
extension-edge/
extension-firefox/
extension-kiwi/
extension-opera/