├── .bemlintrc.json ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .linthtmlrc.json ├── .prettierignore ├── .prettierrc ├── .stylelintignore ├── .stylelintrc.js ├── LICENSE ├── backstopConfig.js ├── checklist.md ├── deploy.sh ├── package.json ├── readme.md └── src ├── index.html ├── main.js ├── main.test.js └── style.css /.bemlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/.bemlintrc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /backstop_data 2 | /dist 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: '@mate-academy/eslint-config', 3 | }; 4 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/.gitignore -------------------------------------------------------------------------------- /.linthtmlrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/.linthtmlrc.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | **/*.test.js 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/.prettierrc -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- 1 | /backstop_data/ 2 | /dist 3 | -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/LICENSE -------------------------------------------------------------------------------- /backstopConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/backstopConfig.js -------------------------------------------------------------------------------- /checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/checklist.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/deploy.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /src/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postnext/layout_hello-world/HEAD/src/main.test.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- 1 | /* styles go here */ 2 | --------------------------------------------------------------------------------