├── .github └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── CONTRIBUTION.md ├── Makefile ├── README.md ├── config ├── .editorconfig ├── .eslintrc.js ├── .pa11yci.js ├── .scss-lint.yml └── webpack.config.js └── ft.yml /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .editorconfig 2 | -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/README.md -------------------------------------------------------------------------------- /config/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/config/.editorconfig -------------------------------------------------------------------------------- /config/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/config/.eslintrc.js -------------------------------------------------------------------------------- /config/.pa11yci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/config/.pa11yci.js -------------------------------------------------------------------------------- /config/.scss-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/config/.scss-lint.yml -------------------------------------------------------------------------------- /config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/config/webpack.config.js -------------------------------------------------------------------------------- /ft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Financial-Times/n-makefile/HEAD/ft.yml --------------------------------------------------------------------------------