1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/.gitignore
Elliot Winkler 4447727eb6
Add TypeScript to the linting process (#13495)
This commit allows developers to write TypeScript files and lint them
(either via a language server in their editor of choice or through the
`yarn lint` command).

The new TypeScript configuration as well as the updated ESLint
configuration not only includes support for parsing TypeScript files,
but also provides some compatibility between JavaScript and TypeScript.
That is, it makes it possible for a TypeScript file that imports a
JavaScript file or a JavaScript file that imports a TypeScript file to
be linted.

Note that this commit does not integrate TypeScript into the build
system yet, so we cannot start converting files to TypeScript and
pushing them to the repo until that final step is complete.
2022-03-21 12:54:47 -06:00

52 lines
468 B
Plaintext

npm-debug.log
yarn-error.log
node_modules
package-lock.json
audit.json
app/bower_components
test/bower_components
package
.eslintcache
# IDEs
.idea
.vscode
.sublime-project
*.bak
# VIM
*.swp
*.swo
temp
.tmp
.sass-cache
.DS_Store
app/.DS_Store
storybook-build/
coverage/
jest-coverage/
dist
builds/
builds.zip
test-artifacts
test-builds
build-artifacts
#ignore css output and sourcemaps
ui/css/output/
notes.txt
.nyc_output
.metamaskrc
# TypeScript
tsout/