Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: CI

on: [push, pull_request]

jobs:
test:
jobs:
test:
name: "Test code"

runs-on: ubuntu-latest
steps:

steps:
- name: "Set up Node.js"
uses: actions/setup-node@v2
with:
node-version: 14.x
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: "Checkout repo"
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ For validating **Vanilla JS** project use `vanilla` version:
```json
{
"parserOptions": {
"ecmaVersion": 2019,
"ecmaVersion": 2023,
"sourceType": "module"
},
"env": {
"es2017": true,
"es2023": true,
"browser": true
},
"extends": "htmlacademy/vanilla",
Expand Down
11 changes: 10 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
10.0.0 / 2023-09-05
==================

* Добавили eslint-плагин `check-file`
* Добавили правила в конфигурационном файле `vanilla`
* `check-file/filename-naming-convention`
* `check-file/folder-naming-convention`
* Обновили версии `eslint` и ECMAScript

9.1.1 / 2023-05-02
==================

Expand Down Expand Up @@ -133,7 +142,7 @@
2.1.0 / 2021-01-27
==================

* returned old configurations for backward compatibility for our inner tools. Please **don't use that configurations in real projects** they are deprecated.
* returned old configurations for backward compatibility for our inner tools. Please **don't use that configurations in real projects** they are deprecated.

2.0.0 / 2021-01-20
==================
Expand Down
Loading