-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
36 lines (35 loc) · 1.16 KB
/
.eslintrc.js
File metadata and controls
36 lines (35 loc) · 1.16 KB
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
/*
* .eslintrc.js
* Sample of ESLint configuration file.
* Please adjust accordingly to your project.
*
* We install eslint-config-prettier to disable ESLint rules that conflict with Prettier.
* See [3] for details.
*
* Authors:
* Sahat Nicholas Simangunsong (sahat.n.simangunsong@gdplabs.id)
* Timotius Nugroho Chandra (timotius.n.chandra@gdplabs.id)
* Created at: October 15th 2023
* -----
* Last Modified: October 19th 2023
* Modified By: I Putu Yudi Haryasa (i.putu.yudi.haryasa@gdplabs.id)
* -----
* Reviewers:
* Sahat Nicholas Simangunsong (sahat.n.simangunsong@gdplabs.id)
* ---
* References:
* [1] https://eslint.org/docs/latest/use/configure/migration-guide#predefined-and-shareable-configs
* [2] https://stackoverflow.com/questions/49525310/error-console-is-not-defined-no-undef-brackets
* [3] https://github.com/prettier/eslint-config-prettier
* ---
* Copyright (c) 2023 GDP LABS. All rights reserved.
*/
module.exports = {
extends: ["eslint:recommended", "prettier", "plugin:@typescript-eslint/recommended"],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
env: {
node: true,
browser: true,
},
};