ASP.NET Razor - C# Code Syntax - PDF Download Cheatsheet
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
{ | |
"quokka": { | |
"babel": { | |
"presets": ["react-app"] | |
}, | |
"plugins": [ | |
"jsdom-quokka-plugin" | |
] | |
} | |
} |
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
FROM drupal:8.5 | |
RUN apt-get update && apt-get install -y git \ | |
&& rm -rf /var/lib/apt/lists/* | |
# this next part was corrected in 2018 to be more clear on how you'd typically | |
# customize your own theme. first you need to clone the theme into this repo | |
# with something like downloading the lastest theme for bootstrap | |
# https://www.drupal.org/project/bootstrap and extract into themes dir on host. |
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
module.exports = { | |
"env": { | |
"mocha": true | |
}, | |
"extends":[ | |
"airbnb-base", | |
"prettier" | |
], | |
"plugins": [ |