This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"_id": { | |
"$oid": "65ca67e7ae7f10c88b598375" | |
}, | |
"name": "Abel Gibson-Jakubowski", | |
"age": 15, | |
"gender": "male", | |
"avgMark": 10.6, | |
"onDuty": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"title": "Buy groceries", | |
"content": "Milk, eggs, bread, coffee", | |
"tag": "Shopping" | |
}, | |
{ | |
"title": "Weekly meeting notes", | |
"content": "Discussed Q3 goals and deadlines", | |
"tag": "Meeting" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Node.js CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
FTP-Deploy-Action: | |
name: Build and publish via FTP | |
runs-on: ubuntu-latest | |
steps: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.element { | |
flex-basis: calc((100% - кол-во маржинов в строке * значение маржина) / кол-во элементов в строке); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alt-require: true | |
attr-lowercase: true | |
attr-no-duplication: true | |
attr-unsafe-chars: true | |
attr-value-double-quotes: true | |
attr-value-not-empty: false | |
doctype-first: true | |
doctype-html5: true | |
head-script-disabled: true | |
href-abs-or-rel: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rules: | |
block-no-empty: true | |
color-no-invalid-hex: true | |
font-family-no-duplicate-names: true | |
font-family-no-missing-generic-family-keyword: true | |
function-calc-no-invalid: true | |
function-calc-no-unspaced-operator: true | |
function-linear-gradient-no-nonstandard-direction: true | |
string-no-newline: true | |
unit-no-unknown: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_style = space | |
indent_size = 2 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Install packages | |
// npm install --save-dev prettier eslint-config-airbnb eslint-config-prettier eslint-plugin-prettier eslint-plugin-react eslint-plugin-import eslint-plugin-jsx-a11y husky lint-staged | |
{ | |
"extends": [ | |
"eslint:recommended", | |
"react-app", | |
"airbnb", | |
"plugin:import/errors", | |
"plugin:react/recommended", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"printWidth": 100, | |
"tabWidth": 2, | |
"useTabs": false, | |
"semi": true, | |
"singleQuote": true, | |
"trailingComma": "es5", | |
"bracketSpacing": true, | |
"jsxBracketSameLine": false, | |
"arrowParens": "avoid", |
NewerOlder