dependabot[bot] 354d343ce6
build(deps): Bump lodash from 4.17.15 to 4.17.19
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19.
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19)

Signed-off-by: dependabot[bot] <support@github.com>
2020-07-20 00:52:36 +00:00
2020-04-01 14:51:51 +04:00
2020-03-26 22:16:28 +04:00
2020-02-14 13:06:04 +04:00
2020-03-26 22:46:20 +04:00
2020-02-08 02:40:35 +04:00
2020-02-08 03:16:05 +04:00
2020-04-01 14:53:13 +04:00
2020-04-01 14:23:30 +04:00
2020-04-01 14:51:51 +04:00
2020-02-14 13:06:04 +04:00

Personal ESLint configuration

Configurations

  • javascript
  • typescript
  • vue-javascript
  • vue-typescript

Example

  • Install dependencies:
npm install --save-dev @typescript-eslint/eslint-plugin @typescript-eslint/parser         \
                       @valentineus/eslint-config eslint eslint-plugin-eslint-comments    \
                       eslint-plugin-import eslint-plugin-security eslint-plugin-sonarjs  \
                       eslint-plugin-unicorn eslint-plugin-vue
 
# or
yarn add --dev @typescript-eslint/eslint-plugin @typescript-eslint/parser         \
               @valentineus/eslint-config eslint eslint-plugin-eslint-comments    \
               eslint-plugin-import eslint-plugin-security eslint-plugin-sonarjs  \
               eslint-plugin-unicorn eslint-plugin-vue
  • Create config file:
{
  "env": {
    "browser": true,
    "es6": true
  },
  "extends": [
    "@valentineus/eslint-config/vue-typescript"
  ],
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parserOptions": {
    "createDefaultProgram": true,
    "ecmaVersion": 2020,
    "project": "tsconfig.json",
    "sourceType": "module",
    "tsconfigRootDir": "."
  },
  "rules": {}
}

License

Apache-2.0. Copyright (c) Valentin Popov.

Description
Languages
TypeScript 79.7%
JavaScript 20.3%