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
http: | |
middlewares: | |
cors: | |
headers: | |
accessControlAllowMethods: | |
- GET | |
- OPTIONS | |
- PUT | |
accessControlAllowOrigin: "*" |
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
Show hidden characters
{ | |
"rulesDirectory": ["./node_modules/tslint-microsoft-contrib"], | |
"extends": "tslint-microsoft-contrib/tslint.json", | |
"rules": { | |
/** | |
* Security Rules. The following rules should be turned on because they find security issues | |
* or are recommended in the Microsoft Secure Development Lifecycle (SDL) | |
*/ | |
"no-reserved-keywords": 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
import * as React from 'react'; | |
import * as ReactDOM from 'react-dom'; | |
// tslint:disable-next-line:variable-name | |
const Widget = () => { | |
return ( | |
<div>hi from widget</div> | |
); | |
}; |
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
javascript:(function(){var btn = document.createElement('a'); btn.setAttribute('download', true); btn.setAttribute('href', document.querySelector('meta[itemprop="contentURL"]').content); btn.innerText = 'download'; document.querySelector('.content').appendChild(btn);})() |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@mixin variable-icon-font($icon-code) { | |
content: #{"\"\\"}#{$icon-code + "\""}; | |
} | |
%icon-base-styles { |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
%icon-base-styles { | |
display: inline-block; | |
font-family: "mosaic-ico"; | |
font-style: normal; | |
font-weight: normal; | |
font-variant: normal; |