• This project
    • Loading...
  • Sign in

이세진 / dev-profile

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 10
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • dev-profile
  • src
  • .eslintrc.js
  • Lee SeJin's avatar
    early phase setting · 086dc135
    086dc135
    Lee SeJin authored 2021-05-05 15:27:00 +0900
.eslintrc.js 463 Bytes
Raw Blame History Permalink
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
module.exports = {
    env: {
      browser: true,
      es2021: true,
      node: true,
    },
    extends: [
      'airbnb-base', "plugin:prettier/recommended"
    ],
    parserOptions: {
      ecmaVersion: 12,
      sourceType: 'module',
    },
    rules: {
      "prettier/prettier": [
        'error',
        {
        endOfLine: 'auto',
        }
        ],
      "no-console":"off",
      "spaced-comment":"off",
      "no-else-return":"off"
    }
  };