• This project
    • Loading...
  • Sign in

MotherProject / Learning Images

%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
  • OSS-Project
  • node_modules
  • process
  • .eslintrc
  • 최예리's avatar
    이미지 업로드 구현 성공 · 159a5895 ...
    159a5895
    폴더 생성, 수정, 삭제 개선
    최예리 authored 2019-11-23 17:34:22 +0900
.eslintrc 435 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
{
extends: "eslint:recommended",
  "env": {
    "node": true,
    "browser": true,
    "es6" : true,
    "mocha": true
  },
  "rules": {
    "indent": [2, 4],
    "brace-style": [2, "1tbs"],
    "quotes": [2, "single"],
    "no-console": 0,
    "no-shadow": 0,
    "no-use-before-define": [2, "nofunc"],
    "no-underscore-dangle": 0,
    "no-constant-condition": 0,
    "space-after-function-name": 0,
   "consistent-return": 0
  }
}