• This project
    • Loading...
  • Sign in

MotherProject / myYoutube

%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 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • myYoutube
  • .eslintrc.js
  • Flare-k's avatar
    [Add] EsLint · 154f701c
    154f701c
    Flare-k authored 2020-06-09 00:49:01 +0900
.eslintrc.js 251 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
module.exports = {
  env: {
    browser: true,
    commonjs: true,
    es2020: true,
  },
  extends: ["airbnb-base", "plugin:prettier/recommended"],
  rules: {
    "no-console": "off",
  },
  parserOptions: {
    ecmaVersion: 11,
  },
  rules: {},
};