Skip to content

Commit

Permalink
ran prettier for files
Browse files Browse the repository at this point in the history
  • Loading branch information
pamellix committed Dec 24, 2024
1 parent 74fc958 commit 7a96742
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.2"
}
}
}
2 changes: 1 addition & 1 deletion packages/eslint-config-base/flat/index.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"use strict"
'use strict';

import eslintRecommended from '@eslint/js';
import tsEslintRecommended from '@typescript-eslint/eslint-plugin';
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"url": "git+https://github.com/salute-developers/grail.git"
},
"author": "Salute Frontend Team <[email protected]>",
"main": "index.js",
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./flat": "./flat/index.mjs"
},
"main": "index.js",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=8",
"@typescript-eslint/parser": ">=8",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ npm i -D @salutejs/prettier-config @typescript-eslint/eslint-plugin@8 @typescrip

```json
{
"extends": ["all-other-configs", "@salutejs/eslint-config"]
"extends": ["all-other-configs", "@salutejs/eslint-config"]
}
```
2 changes: 1 addition & 1 deletion packages/eslint-config/flat/index.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"use strict";
'use strict';

import eslintConfigBase from '@salutejs/eslint-config-base';
import reactPlugin from 'eslint-plugin-react';
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/index.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import prettierConfig from "@salutejs/prettier-config"
import prettierConfig from '@salutejs/prettier-config';

export default {
extends: [
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
"url": "git+https://github.com/salute-developers/grail.git"
},
"author": "Salute Frontend Team <[email protected]>",
"main": "index.js",
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./flat": "./flat/index.mjs"
},
"main": "index.js",
"scripts": {
"test": "jest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/prettier-config/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ export default {
singleQuote: true,
tabWidth: 4,
trailingComma: 'all',
};
};
2 changes: 1 addition & 1 deletion packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"url": "git+https://github.com/salute-developers/grail.git"
},
"author": "Salute Frontend Team <[email protected]>",
"main": "index.js",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"main": "index.js",
"peerDependencies": {
"prettier": ">=3.1.0",
"typescript": ">=4.3.5"
Expand Down

0 comments on commit 7a96742

Please sign in to comment.