mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
68e0cc6d90
* Add ESLint infrastructure. * Lint auto fixes. * Lint fixes. * Lint fixes. * Add Lint to CI builds. Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
13 lines
209 B
JavaScript
13 lines
209 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
],
|
|
};
|
|
|